[USER (data scientist)]: A list would be perfect. Please generate the code with the output in list type.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd  
import pickle
from decision_company import read_csv_file, filter_by_value, fetch_index, convert_to_list

# Load the dataset  
credit_customers = read_csv_file("credit_customers.csv")   
  
# YOUR SOLUTION BEGIN:
<code1>
[GENERATE YOUR CODE]
</code1>
# YOUR SOLUTION END

print(f"result_list: {result_list}")  

# save data
pickle.dump(result_list, open("./pred_result/result_list.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: You got it! Here's the code to turn the result into a list:

# MY SOLUTION BEGIN:
